home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 28
/
Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso
/
Aminet
/
util
/
misc
/
sss.lha
/
sss
/
do
< prev
next >
Wrap
AmigaDOS Script File
|
1998-10-26
|
501b
|
26 lines
.key list
;if you call this script with the parameter 'y', the source produced by
;ESA won't be deleted (comments will be included)
set ESA ESA
set ASM phx
set EXE sss
set OPT to
;ESA = ESA executable path
;ASM = your assembler's executable path
;EXE = name of the executable produced by the assembler
;OPT = option accepted by your assembler to specify EXE
failat 1
if "<list>" eq "y"
$ESA main.esa -c
$ASM main.s $OPT $EXE
else
$ESA main.esa
$ASM main.s $OPT $EXE
delete main.s
endif